html, body, form, p {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-size: 14px;
}

* {
    box-sizing: border-box;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    line-height: 1;
    color: #444;
    margin-bottom: 36px;
}

header {
    background-color: #0067c6;
    color: #FFF;
    vertical-align: top;
    padding: 8px;
}

header select {
    width: 160px;
}

footer {
    position: absolute;
    bottom: 0;
    background-color: #EEE;
    width: 100%;
    color: #666;
    padding: 12px 0;
    font-size: 12px;
}

h1, h2, h3, h4, h5 {
    color: #0067c6;
}

h1 {
    font-size: 1.888em;
    font-weight: bold;
    line-height: 1.5;
}

p {
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5em;
}

p.small {
    font-size: 11px;
}

hr.blue-line {
    border: 0;
    height: 2px;
    background: #0067c6;
}

img {
    max-width: 100%;
}

label, .required-fields {
    font-weight: bold;
    font-size: 12px;
    padding-bottom: 3px;
    display: block;
    color: #666;
}

input[type="text"], select {
    display: block;
    border: 1px solid #DDDDDD;
    padding: 4px;
    background-color: #ebebeb;
    color: #444;
    min-width: 200px;
    width: 100%;
    max-width: 100%;
}

table.products-of-interest, table.language-select-table {
    display: none;
}

.language-select-container {
  position: relative;
}

.language-select-container img, .language-select-container select {
  display: inline-block;
}

.language-select-container img {
    position: absolute;
    left: 8px;
    top: 4px;
    pointer-events: none;
    width: 16px;
}

.language-select-container select {
    background-color: #0067c6;
    color: #FFF;
    padding-left: 28px;
    border-radius: 0px;
    min-width: 160px;
}

.header-content {
    text-align: center;
}

.icons {
    display: inline-block;
}

.other-sites span {
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
    font-size: 14px;
}

.navbar-light .navbar-nav .nav-link {
    color: #0067c6;
    max-width: 250px;
    cursor: pointer;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: #0067c6;
    border-bottom: 1px solid #0067c6;
}

.navbar-light .navbar-nav .nav-link.active {
    color: #0067c6;
    font-weight: bold;
    border-bottom: 2px solid #0067c6;
}

.double-opt-in {
    display: none;
}

.text-link {
    color: #0067c6;
    text-decoration: none;
    cursor: pointer;
}

.text-link:hover {
    color: #0067c6;
    text-decoration: underline;
    cursor: pointer;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.hide {
    display: none;
}

.button {
    background: transparent;
    border: 2px solid #BBB;
    color: #888;
    font-weight: bold;
    padding: 6px 24px;
    cursor: pointer;
    margin-bottom: 6px;
    display: inline-block;
    text-decoration: none;
    transition: all ease-in-out 120ms;
}

.button:hover {
    background-color: #BBB;
    color: #FFF;
}

.button.primary {
    border-color: #0067c6;
    color: #0067c6;
}

.button.primary:hover {
    background-color: #0067c6;
    color: #FFF;
}

.has-error label {
    color:  #E65151;
}

.has-error input[type="text"], .has-error select {
    border: 1px solid  #E65151;
}

.pop-under {
    background-color: #0479C8;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 1px 6px 0px rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
}

.not-you {
    padding-left: 20px;
}

#homePage .card-title {
    margin: 10px 0;
}

#productsPage .card-title {
    margin-bottom: 3px;
}

.card {
    border: 2px solid rgba(0,0,0,.125);
    cursor: pointer;
}

.card:hover {
    border: 2px solid #0067c6;
}

.card-selected {
    background-color: #0067c6;
}

.card-selected h4, .card-selected p {
    color: #fff;
}

.check-circle {
    vertical-align: text-top;
}

.fill-blue {
    fill: #0067c6;
}

.fill-white {
    fill: #fff;
}

.modal label, #unsubscribeForm label {
    display: inline-block;
    font-weight: normal;
    font-size: 14px;
    padding-bottom: 0;
    vertical-align: top;
}

.sub-product {
    margin-bottom: 10px;
}

/*Spinner loading icon css START*/
.lds-spinner {
  color: #fff;
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 29px;
  width: 5px;
  height: 14px;
  border-radius: 20%;
  background: #0067c6;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*Spinner loading icon css END*/

@media screen and (max-width: 991px) {
    h4 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {

}

@media screen and (max-width: 575px) {
    .welcome {
        text-align: left;
        margin-top: 10px;
    }
}

@media screen and (max-width: 500px) {
    .header-content {
        text-align: right;
    }

    .other-sites {
        float: none !important;
        text-align: right;
        margin-top: 12px !important;
    }

    .footer-links {
        float: none !important;
        margin-top: 15px;
    }
}
